home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / LIBRARY / PCTV3N5 / STATUS.ZIP / STATDEMO.RC < prev    next >
Text File  |  1992-08-25  |  2KB  |  61 lines

  1. #include "statdemo.rch"
  2. ID_MENU MENU 
  3. BEGIN
  4.     POPUP "&File"
  5.     BEGIN
  6.         MENUITEM "&Open\tF3", CM_FILE_OPEN
  7.         MENUITEM "&Save\tF2", CM_FILE_SAVE
  8.         MENUITEM "Save &as", CM_FILE_SAVEAS
  9.         MENUITEM "&Close", CM_FILE_CLOSE
  10.         MENUITEM SEPARATOR
  11.         MENUITEM "E&xit\tAlt+X", CM_FILE_EXIT
  12.     END
  13.  
  14.     POPUP "&Edit"
  15.     BEGIN
  16.         MENUITEM "&Undo\tAlt+Bksp", CM_EDIT_UNDO
  17.         MENUITEM "&Redo\tShift+Alt+Bksp", CM_EDIT_REDO
  18.         MENUITEM SEPARATOR
  19.         MENUITEM "Cu&t\tShift+Del", CM_EDIT_CUT
  20.         MENUITEM "&Copy\tCtrl+Ins", CM_EDIT_COPY
  21.         MENUITEM "&Paste\tShift+Ins", CM_EDIT_PASTE
  22.         MENUITEM "D&elete\tDel", CM_EDIT_DELETE
  23.     END
  24.  
  25. END
  26.  
  27. STRINGTABLE 
  28. BEGIN
  29.     1, "System menu"
  30.     2, "File management commands (open, save, etc.)"
  31.     3, "Edit commands (Undo, Cut, Copy, etc.)"
  32. END
  33.  
  34. STRINGTABLE 
  35. BEGIN
  36.     999, "Select Yes button to end program"
  37.     CM_FILE_OPEN, "Locate and open a file"
  38.     CM_FILE_SAVE, "Save current file"
  39.     CM_FILE_SAVEAS, "Save file under a different name"
  40.     CM_FILE_CLOSE, "Close current file"
  41.     CM_FILE_EXIT, "Exit the application"
  42.     CM_EDIT_UNDO, "Undo most recent operation"
  43.     CM_EDIT_REDO, "Redo most recently undone operation"
  44.     CM_EDIT_CUT, "Cut selected information"
  45.     CM_EDIT_COPY, "Copy selected information to clipboard"
  46.     CM_EDIT_PASTE, "Paste clipboard information to window"
  47.     CM_EDIT_DELETE, "Delete selected information"
  48. END
  49.  
  50. STRINGTABLE 
  51. BEGIN
  52.     SC_RESTORE, "Restore window to normal size"
  53.     SC_MOVE, "Change window position"
  54.     SC_SIZE, "Change window dimensions"
  55.     SC_MINIMIZE, "Shrink window to an icon"
  56.     SC_MAXIMIZE, "Expand window to full screen"
  57.     SC_CLOSE, "Close window and end program"
  58.     SC_TASKLIST, "Switch to another program"
  59. END
  60.  
  61.